home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 1592 < prev    next >
Encoding:
Internet Message Format  |  1996-08-06  |  992 b 

  1. Path: atlas.axiom.net!usenet
  2. From: Dave Nulton <dnult@axiom.net>
  3. Newsgroups: comp.lang.c++
  4. Subject: Need circle function for BGI -> Smith Chart Project
  5. Date: 11 Jan 1996 19:49:57 GMT
  6. Organization: Axiom Communications
  7. Message-ID: <4d3pl5$4sg@atlas.axiom.net>
  8. NNTP-Posting-Host: node094.axiom.net
  9. Mime-Version: 1.0
  10. Content-Type: text/plain; charset=us-ascii
  11. Content-Transfer-Encoding: 7bit
  12. X-Mailer: Mozilla 1.1N (Windows; I; 16bit)
  13.  
  14. I'm currently writing a program for using Smith Charts (an EE tool 
  15. for analyzing transmission lines and antenna systems).
  16.  
  17. The chart is made up of concentric circles and arcs.  The problem 
  18. I have is the arc function in TC++ takes integer angle arguments
  19.  
  20.     arc (int x, int y, int start_angle, int end_angle);
  21.  
  22. I need an arc function that takes a float or double argument for 
  23. the start and end angles.
  24.  
  25.     arc (int x, int y, float start_angle, float end_angle);
  26.  
  27. Does anyone have any suggestions?  Your help will be greatly 
  28. appreciated.
  29.  
  30. Thanks
  31. -dnult
  32.  
  33.